home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Mar / di9803cc / Test.dpr < prev    next >
Text File  |  1997-05-17  |  213b  |  15 lines

  1. program Test;
  2.  
  3. uses
  4.   Forms,
  5.   TestMain in 'TestMain.pas' {frmMain};
  6.  
  7. {$R *.RES}
  8. {$R sounds.res}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TfrmMain, frmMain);
  13.   Application.Run;
  14. end.
  15.